home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 September / Australian PC User - September 2003 (CD1).iso / magstuff / web / files / psp801ev.exe / Data1.cab / Preset_AutoSmallScratchRemov < prev    next >
Encoding:
Text File  |  2003-06-06  |  808 b   |  28 lines

  1.  
  2. from JascApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': 'Jasc Software Inc.',
  7.         'Copyright': 'Copyright ⌐ 2003 Jasc Software Inc., all rights reserved.',
  8.         'Description': 'Factory default preset for AutoSmallScratchRemoval effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_AutoSmallScratchRemoval():
  14.     return {
  15.         'RemoveDarkScratches': 1,
  16.         'Strength': 1,
  17.         'LowerContrastLimit': 0,
  18.         'GeneralSettings': {
  19.             'AutoActionMode': 0,
  20.             'ExecutionMode': 0
  21.             },
  22.         'UpperContrastLimit': 50,
  23.         'RemoveLightScratches': 0
  24.         }
  25.  
  26. def Do(Environment):
  27.     App.Do( Environment, 'AutoSmallScratchRemoval', Preset_AutoSmallScratchRemoval())
  28.